home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Python / protos / sysmodule.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-25  |  851 b   |  17 lines

  1. static PyObject *sys_exc_info ( PyObject *self , PyObject *args );
  2. static PyObject *sys_exit ( PyObject *self , PyObject *args );
  3. static PyObject *sys_settrace ( PyObject *self , PyObject *args );
  4. static PyObject *sys_setprofile ( PyObject *self , PyObject *args );
  5. static PyObject *sys_setcheckinterval ( PyObject *self , PyObject *args );
  6. #ifdef USE_MALLOPT
  7. static PyObject *sys_mdebug ( PyObject *self , PyObject *args );
  8. #endif
  9. static PyObject *sys_getrefcount ( PyObject *self , PyObject *args );
  10. #ifdef COUNT_ALLOCS
  11. static PyObject *sys_getcounts ( PyObject *self , PyObject *args );
  12. #endif
  13. static PyObject *list_builtin_module_names ( void );
  14. static PyObject *makepathobject ( char *path , int delim );
  15. static PyObject *makeargvobject ( int argc , char **argv );
  16. static void mywrite ( char *name , FILE *fp , const char *format , va_list va );
  17.